home *** CD-ROM | disk | FTP | other *** search
/ Games of Daze / Infomagic - Games of Daze (Summer 1995) (Disc 1 of 2).iso / x2ftp / msdos / docs / cptuts22 / flyaway.h < prev    next >
Encoding:
C/C++ Source or Header  |  1992-01-20  |  373 b   |  14 lines

  1. // This file contains a few general purpose definitions to be used
  2. //  with several of the FLYAWAY adventure game classes.
  3.  
  4. #ifndef FLYAWAY_H
  5. #define FLYAWAY_H
  6.  
  7. #define FALSE 0
  8. #define TRUE  1
  9.  
  10. enum word {north = 1, east, south, west, drop, get,
  11.            look, inventory, read, buy, help, quit,
  12.            keys, candy, ticket, money, monitor, paper};
  13.  
  14. #endif